button{
  outline: none !important;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #666;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #666;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #666;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #666;
}
html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-size: 14px;
  line-height: 1.42857143;
}
/*使用内边距*/
* {
  box-sizing: border-box;
}

:after,
:before {
  box-sizing: border-box;
}
.text-left{
  text-align: left;
}
.text-right{
  text-align: right;
}

.text-center{
  text-align: center;
}

.text-justif{
  text-align: justify;
}
.text-nowrap{
  white-space: nowrap;
}
.text-lowercase{
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-bold{
    font-weight:bold;
}

/*手机上a链接有黑色透明底怎么去掉
给a加这个样式*/
a {
  -webkit-tap-highlight-color: rgba(255, 0, 0, 0);
}
select,input{
  outline: none;
}
/*ie 去掉自带关闭*/
.n-order input::-ms-clear {
  display: none;
}

/*loading 4个小点加载引用*/
#loading1 {
  position: fixed;
  left: 0;
  top: 0;
  background: #000;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#loading .dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 20px;
  top: 50%;
  background-color: #0097FB;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
      transform: translate(0, -50%);
  -webkit-animation: 3s linear loader infinite;
  animation: 3s linear loader infinite;
}

#loading .dot:nth-of-type(1) {
  left: 0px;
}

#loading .dot:nth-of-type(2) {
  left: -10px;
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}

#loading .dot:nth-of-type(3) {
  left: -20px;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

#loading .dot:nth-of-type(4) {
  left: -30px;
  -webkit-animation-delay: 0.45s;
  animation-delay: 0.45s;
}

#loading .dot:nth-of-type(5) {
  left: -40px;
  -webkit-animation-delay: 0.60s;
  animation-delay: 0.60s;
}

#loading1.closed {
  /*opacity: 0;
  -webkit-transition: opacity .5s;
  -o-transition: opacity .5s;
  transition: opacity .5s;*/
  display: none;
}

@-webkit-keyframes loader {
  0%,
  20% {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    opacity: 0;
  }
  35% {
    -webkit-transform: translate(45vw, -50%);
    transform: translate(45vw, -50%);
    opacity: 1;
  }
  65% {
    -webkit-transform: translate(55vw, -50%);
    transform: translate(55vw, -50%);
    opacity: 1;
  }
  80%,
  100% {
    -webkit-transform: translate(100vw, -50%);
    transform: translate(100vw, -50%);
    opacity: 0;
  }
}

@keyframes loader {
  0%,
  20% {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    opacity: 0;
  }
  35% {
    -webkit-transform: translate(45vw, -50%);
    transform: translate(45vw, -50%);
    opacity: 1;
  }
  65% {
    -webkit-transform: translate(55vw, -50%);
    transform: translate(55vw, -50%);
    opacity: 1;
  }
  80%,
  100% {
    -webkit-transform: translate(100vw, -50%);
    transform: translate(100vw, -50%);
    opacity: 0;
  }
}

.backtop {
  position: fixed;
  bottom: 30px;
  right: 3%;
  background-color: rgba(255, 255, 255, 0.9);
  fill: #222;
  cursor: pointer;
  -webkit-transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: 46px;
  padding: 0;
  margin: 0;
  width: 46px;
  border-radius: 50%;
  z-index: 9;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  -webkit-transform: scale(0, 0);
      -ms-transform: scale(0, 0);
          transform: scale(0, 0);
  opacity: 0;
  -webkit-transform: translate(0, 50px);
      -ms-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all .6s ease;
  transition: all .6s ease;
}

.backtop svg {
  height: 20px;
  width: 20px;
  position: relative;
  display: block;
  margin: 0 auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.backtop.active {
  -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

/*网站单位设置*/
@media (max-width: 767px) {
  html {
    font-size: 26px !important;
  }
}
@media (max-width: 479px) {
  html {
    font-size: 24px !important;
  }
}
@media screen and (max-width: 320px) {
  html {
    font-size: 20px !important;
  }
}
@media (min-width: 768px) {
  html {
    font-size: 28px !important;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 30px !important;
  }
}
@media (min-width: 1440px) {
  html {
    font-size: 34px !important;
  }
}
@media (min-width: 1680px) {
  html {
    font-size: 40px !important;
  }
}


/*鼠标选中文字的样式*/
::-moz-selection {
  background: #2d8edd;
  color: #fff;
}

::selection {
  background: #2d8edd;
  color: #fff;
}

/*网站默认滚动条的样式*/
::-webkit-scrollbar {
  width: 6px;
  height:6px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  background: #2d8edd;
}

::-webkit-scrollbar-thumb:window-inactive {
  background: #2d8edd;
}

::-webkit-scrollbar-thumb:vertical:hover {
  background: #2d8edd;
}

/*==常用字号==*/
.tit-12 {
  font-size: 12px;
  line-height: 1.5;
}

.tit-13 {
  font-size: 13px;
  line-height: 1.5;
}

.tit-14 {
  font-size: 14px;
  line-height: 1.6;
}

.tit-16 {
  font-size: 16px;
  line-height: 1.6;
}

.tit-18 {
  font-size: 18px;
  line-height: 1.6;
}

.tit-20 {
  font-size: .5rem;
  line-height: 1.6;
}

.tit-22 {
  font-size: .55rem;
  line-height: 1.6;
}

.tit-24 {
  font-size: .6rem;
  line-height: 1.6;
}

.tit-25 {
  font-size: .625rem;
  line-height: 1.6;
}

.tit-26 {
  font-size: .65rem;
  line-height: 1.6;
}

.tit-27 {
  font-size: .675rem;
  line-height: 1.6;
}

.tit-28 {
  font-size: .7rem;
  line-height: 1.6;
}

.tit-29 {
  font-size: .725rem;
  line-height: 1.6;
}

.tit-30 {
  font-size: .75rem;
  line-height: 1.6;
}

.tit-32 {
  font-size: .8rem;
  line-height: 1.6;
}

.tit-34 {
  font-size: .85rem;
  line-height: 1.6;
}

.tit-36 {
  font-size: .9rem;
  line-height: 1.6;
}

.tit-38 {
  font-size: .95rem;
  line-height: 1.6;
}

.tit-40 {
  font-size: 1rem;
  line-height: 1.6;
}

.tit-42 {
  font-size: 1.05rem;
  line-height: 1.6;
}

.tit-44 {
  font-size: 1.1rem;
  line-height: 1.6;
}

.tit-46 {
  font-size: 1.15rem;
  line-height: 1.6;
}

.tit-48 {
  font-size: 1.2rem;
  line-height: 1.6;
}

.tit-50 {
  font-size: 1.25rem;
  line-height: 1.6;
}

.tit-52 {
  font-size: 1.3rem;
  line-height: 1.6;
}

.tit-54 {
  font-size: 1.35rem;
  line-height: 1.6;
}

.tit-56 {
  font-size: 1.4rem;
  line-height: 1.6;
}

.tit-58 {
  font-size: 1.45rem;
  line-height: 1.6;
}

.tit-60 {
  font-size: 1.5rem;
  line-height: 1.6;
}

.tit-62 {
  font-size: 1.55rem;
  line-height: 1.6;
}

.tit-64 {
  font-size: 1.6rem;
  line-height: 1.6;
}

.tit-66 {
  font-size: 1.65rem;
  line-height: 1.6;
}

.tit-68 {
  font-size: 1.7rem;
  line-height: 1.6;
}

.tit-70 {
  font-size: 1.75rem;
  line-height: 1.6;
}

.tit-72 {
  font-size: 1.8rem;
  line-height: 1.6;
}

.tit-74 {
  font-size: 1.85rem;
  line-height: 1.6;
}

.tit-76 {
  font-size: 1.9rem;
  line-height: 1.6;
}

.tit-78 {
  font-size: 1.95rem;
  line-height: 1.6;
}

.tit-80 {
  font-size: 2rem;
  line-height: 1.6;
}

.p-12 {
  font-size: 12px;
  line-height: 1.6;
}
.p-12 img {
  max-width: 100%;
}

.p-14 {
  font-size: 14px;
  line-height: 1.6;
}
.p-14 img {
  max-width: 100%;
}

.p-16 {
  font-size: 16px;
  line-height: 1.6;
}
.p-16 img {
  max-width: 100%;
}

.p-18 {
  font-size: 18px;
  line-height: 1.6;
}
.p-18 img {
  max-width: 100%;
}

.p-20 {
  font-size: 20px;
  line-height: 1.6;
}
.p-20 img {
  max-width: 100%;
}

.p-24 {
  font-size: 24px;
  line-height: 1.6;
}
.p-24 img {
  max-width: 100%;
}

/*==常用行高==*/
.line-height_0 {
  line-height: 1;
}

.line-height_1 {
  line-height: 1.5;
}

.line-height_2 {
  line-height: 2;
}

/*==常用颜色==*/
.col-fff {
  color: #fff;
}

.col-222 {
  color: #222;
}

.col-333 {
  color: #333;
}

.col-444 {
  color: #444;
}

.col-666 {
  color: #666;
}

.col-000 {
  color: #000;
}

.col-777 {
  color: #777;
}

.col-888 {
  color: #888;
}

.col-999 {
  color: #999;
}

.col-4c {
  color: #4c4c4c;
}

.col-red {
  color: #da3830;
}

/*视频平铺 16:9的比例*/
.full-video {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  top: auto !important;
  height: 100vh;
  -webkit-transition: width 0.56s, right 0.56s, bottom 0.56s, left 0.56s, top 0.56s, opacity 0.56s !important;
          transition: width 0.56s, right 0.56s, bottom 0.56s, left 0.56s, top 0.56s, opacity 0.56s !important;
}
.full-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
      transform: translateX(-50%) translateY(-50%);
}

.full-video-in {
  width: 100vw;
  height: 100%;
  right: 0;
  bottom: 0;
  position: absolute;
  top: 0;
  left: 0;
}


/*==flex 弹性布局==*/
.flex-row-nowrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-row-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-row-wrap-1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.flex-row-wrap-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex2-row-nowrap {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex2-row-wrap {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex2-row-wrap-1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.flex2-row-wrap-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

/*==进场效果==*/
.imgbg-tong:after {
  content: "";
  margin: 0 0 0 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
  z-index: 4;
  -webkit-transition: all 0.5s ease-in-out 0.5s;
          transition: all 0.5s ease-in-out 0.5s;
}

.imgbg-tong:before {
  content: "";
  margin: 0 0 0 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #111;
  z-index: 5;
  opacity: 1;
  -webkit-transition: all 0.5s ease-in-out;
          transition: all 0.5s ease-in-out;
}

.js-m.animate.imgbg-tong:before,
.js-m.animate.imgbg-tong:after {
  margin-right: 0;
  right: 0;
  bottom: 0;
  left: 100%;
}

/*==
飘动效果0
animation: planet1 35s infinite linear;
==*/
@-webkit-keyframes animation-1 {
  0% {
    -webkit-transform: rotate(0) translate(2.5%, 0) rotate(0);
            transform: rotate(0) translate(2.5%, 0) rotate(0);
  }
  50% {
    -webkit-transform: rotate(180deg) translate(2.5%, 2%) rotate(-180deg);
            transform: rotate(180deg) translate(2.5%, 2%) rotate(-180deg);
  }
  100% {
    -webkit-transform: rotate(360deg) translate(2.5%, 0) rotate(-360deg);
            transform: rotate(360deg) translate(2.5%, 0) rotate(-360deg);
  }
}
@keyframes animation-1 {
  0% {
    -webkit-transform: rotate(0) translate(2.5%, 0) rotate(0);
            transform: rotate(0) translate(2.5%, 0) rotate(0);
  }
  50% {
    -webkit-transform: rotate(180deg) translate(2.5%, 2%) rotate(-180deg);
            transform: rotate(180deg) translate(2.5%, 2%) rotate(-180deg);
  }
  100% {
    -webkit-transform: rotate(360deg) translate(2.5%, 0) rotate(-360deg);
            transform: rotate(360deg) translate(2.5%, 0) rotate(-360deg);
  }
}
@media (max-width: 1023px) {
  .tit-16 {
    font-size: 14px;
  }

  .tit-18 {
    font-size: 16px;
  }

  .tit-20 {
    font-size: 18px;
  }

  .tit-22 {
    font-size: 20px;
  }

  .tit-24 {
    font-size: 22px;
  }

  .tit-30 {
    font-size: .75rem;
  }

  .tit-32 {
    font-size: 1.1rem;
  }

  .n-join .job-name {
    margin: 1rem 0;
  }

  .p-16 {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .tit-16 {
    font-size: 12px;
  }

  .tit-18 {
    font-size: 14px;
  }

  .tit-20 {
    font-size: 16px;
  }

  .tit-22 {
    font-size: 18px;
  }

  .tit-24 {
    font-size: 20px;
  }
}
@media (max-width: 580px) {
  .tit-16 {
    font-size: 12px;
  }

  .tit-20 {
    font-size: 14px;
  }

  .tit-22 {
    font-size: 16px;
  }

  .tit-24 {
    font-size: 18px;
  }
}

